home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Utilities / db / Examples / ARexxDemos / firstcharupper.db < prev    next >
Encoding:
Text File  |  1994-11-20  |  177 b   |  8 lines

  1. /* Rexxprogram for db that convert the first character to upper case.
  2.  * By Anders Callertun 1994
  3.  */
  4.  
  5. options results
  6. GETFIELD
  7. PUTFIELD upper(left(result,1))||substr(result,2)
  8.